home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / utilities / pu248.dms / pu248.adf / Intuition / IDCMP / Example8.c < prev    next >
C/C++ Source or Header  |  1992-05-01  |  6KB  |  181 lines

  1. /***********************************************************/
  2. /*                                                         */
  3. /* Amiga C Encyclopedia (ACE) V3.0      Amiga C Club (ACC) */
  4. /* -------------------------------      ------------------ */
  5. /*                                                         */
  6. /* Book:    ACM Intuition               Amiga C Club       */
  7. /* Chapter: IDCMP                       Tulevagen 22       */
  8. /* File:    Example8.c                  181 41  LIDINGO    */
  9. /* Author:  Anders Bjerin               SWEDEN             */
  10. /* Date:    92-05-01                                       */
  11. /* Version: 1.10                                           */
  12. /*                                                         */
  13. /*   Copyright 1992, Anders Bjerin - Amiga C Club (ACC)    */
  14. /*                                                         */
  15. /* Registered members may use this program freely in their */
  16. /*     own commercial/noncommercial programs/articles.     */
  17. /*                                                         */
  18. /***********************************************************/
  19.  
  20. /* This program explains how to use the IDCMP flag INTUITICKS. */
  21.  
  22.  
  23.  
  24. #include <intuition/intuition.h>
  25.  
  26.  
  27.  
  28. struct IntuitionBase *IntuitionBase;
  29.  
  30.  
  31.  
  32. /* Declare a pointer to a Window structure: */ 
  33. struct Window *my_window;
  34.  
  35. /* Declare and initialize your NewWindow structure: */
  36. struct NewWindow my_new_window=
  37. {
  38.   50,             /* LeftEdge    x position of the window. */
  39.   25,             /* TopEdge     y positio of the window. */
  40.   320,            /* Width       320 pixels wide. */
  41.   100,            /* Height      100 lines high. */
  42.   0,              /* DetailPen   Text should be drawn with colour reg. 0 */
  43.   1,              /* BlockPen    Blocks should be drawn with colour r. 1 */
  44.   CLOSEWINDOW|    /* IDCMPFlags  We will recieve a message when the user */
  45.                   /*             selects the Close window gad.           */
  46.  
  47.   INTUITICKS,     /*             We will also recieve simple time */
  48.                   /*             events. (Around 10 times / second.) */
  49.  
  50.   SMART_REFRESH|  /* Flags       Intuition should refresh the window. */
  51.   WINDOWCLOSE|    /*             Close Gadget. */
  52.   WINDOWDRAG|     /*             Drag gadget. */
  53.   WINDOWDEPTH|    /*             Depth arrange Gadgets. */
  54.   WINDOWSIZING|   /*             Sizing Gadget. */
  55.   ACTIVATE,       /*             The window should be Active when opened. */
  56.   NULL,           /* FirstGadget No gadgets connected to this window. */
  57.   NULL,           /* CheckMark   Use Intuition's default CheckMark. */
  58.   "THE TIME IS SHORT",/* Title   Title of the window. */
  59.   NULL,           /* Screen      Connected to the Workbench Screen. */
  60.   NULL,           /* BitMap      No Custom BitMap. */
  61.   100,            /* MinWidth    We will not allow the window to become */
  62.   50,             /* MinHeight   smaller than 100 x 50, and not bigger */
  63.   400,            /* MaxWidth    than 400 x 200. */
  64.   200,            /* MaxHeight */
  65.   WBENCHSCREEN    /* Type        Connected to the Workbench Screen. */
  66. };
  67.  
  68.  
  69.  
  70. /*************************************************************************/
  71. /* Extra information:                                                    */
  72. /* INTUITICKS is a simply way of getting time messages. We will get      */
  73. /* around (!) 10 messages per second. The nice thing with these messages */
  74. /* is that it will not fill up the input buffer if you do not collect    */
  75. /* them fast enough. If Intuition finds an INTUITICK message already     */
  76. /* waiting in the port, no new messages will be created.                 */
  77. /*************************************************************************/
  78.  
  79.  
  80.  
  81. main()
  82. {
  83.   /* Boolean variable used for the while loop: */
  84.   BOOL close_me;
  85.  
  86.   ULONG class;   /* IDCMP flag. */
  87.  
  88.   ULONG seconds; /* Seconds, copy of the system clock. */
  89.   ULONG micros;  /* Micros,           - " -            */
  90.  
  91.   /* Pointer to an IntuiMessage structure: */
  92.   struct IntuiMessage *my_message;
  93.  
  94.  
  95.  
  96.   /* Before we can use Intuition we need to open the Intuition Library: */
  97.   IntuitionBase = (struct IntuitionBase *)
  98.     OpenLibrary( "intuition.library", 0 );
  99.   
  100.   if( IntuitionBase == NULL )
  101.     exit(); /* Could NOT open the Intuition Library! */
  102.  
  103.  
  104.  
  105.   /* We will now try to open the window: */
  106.   my_window = (struct Window *) OpenWindow( &my_new_window );
  107.   
  108.   /* Have we opened the window succesfully? */
  109.   if(my_window == NULL)
  110.   {
  111.     /* Could NOT open the Window! */
  112.     
  113.     /* Close the Intuition Library since we have opened it: */
  114.     CloseLibrary( IntuitionBase );
  115.  
  116.     exit();  
  117.   }
  118.  
  119.  
  120.  
  121.   /* We have opened the window, and everything seems to be OK. */
  122.  
  123.  
  124.  
  125.   close_me = FALSE;
  126.  
  127.   /* Stay in the while loop until the user has selected the Close window */
  128.   /* gadget: */
  129.   while( close_me == FALSE )
  130.   {
  131.     /* Wait until we have recieved a message: */
  132.     Wait( 1 << my_window->UserPort->mp_SigBit );
  133.  
  134.  
  135.     /* As long as we can collect messages successfully we stay in the */
  136.     /* while-loop: */
  137.     while(my_message = (struct IntuiMessage *) GetMsg(my_window->UserPort))
  138.     {
  139.       /* After we have successfully collected the message we can read */
  140.       /* it, and save any important values which we maybe want to check */
  141.       /* later: */
  142.       class = my_message->Class;     /* IDCMP flag. */
  143.       
  144.       /* Copies of the system clock when this message was created: */
  145.       seconds = my_message->Seconds; /* Seconds. */
  146.       micros = my_message->Micros;   /* Micros. */
  147.  
  148.  
  149.       /* After we have read it we reply as fast as possible: */
  150.       /* REMEMBER! Do never try to read a message after you have replied! */
  151.       /* (Some other process has maybe changed it.) */
  152.       ReplyMsg( my_message );
  153.  
  154.  
  155.       /* Check which IDCMP flag was sent: */
  156.       switch( class )
  157.       {
  158.         case CLOSEWINDOW:    /* The user selected the Close window gad. */
  159.                close_me=TRUE;
  160.                break;
  161.  
  162.         case INTUITICKS:     /* Time event. */
  163.                printf("Seconds: %6d  Micros: %6d\n", seconds, micros);
  164.                break;
  165.       }
  166.     }
  167.   }
  168.  
  169.  
  170.  
  171.   /* Close the window: */
  172.   CloseWindow( my_window );
  173.  
  174.  
  175.  
  176.   /* Close the Intuition Library: */
  177.   CloseLibrary( IntuitionBase );
  178.   
  179.   /* THE END */
  180. }
  181.